home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / bbs / dao23a.zip / MAKECUE.TXT < prev    next >
Text File  |  1996-09-14  |  4KB  |  99 lines

  1.  
  2.               MAKECUE.EXE - Automatic CUE SHEET Generator
  3.  
  4.  
  5. PROGRAM DESCRIPTION                   
  6. -------------------
  7.  
  8.     MAKECUE.EXE will automatically generate a CUE SHEET for any CDROM
  9. by analyzing the disc layout. On audio discs, the subcode-Q data can
  10. (optionally) be scanned for all pregaps and subindexes. The resulting
  11. cue sheet can then be used by DAO.EXE to produce virtually identical
  12. copies of the original disc.
  13.  
  14.  
  15. SUPPORTED DEVICES    
  16. -----------------
  17.  
  18.     Most CDROM drives/recorders are capable of reading subcode-Q data,
  19. but some cannot. Drives that cannot read subcode-Q include the HP4020i
  20. and Philips CDD522/CDD2000. You will receive an error if you attempt to
  21. use MAKECUE on an unsupported drive.
  22.  
  23.     I do not recommend using MAKECUE on the Toshiba 3501. This drive has
  24. a number of firmware bugs related to the of reading subcode-Q data and
  25. will either not work at all or produce incorrect cue sheets.
  26.  
  27.     The Yamaha CDR100/CDR102 does not correctly return the subcode-Q
  28. data for any audio disc where the first track starts at a time other
  29. than 00:02:00 (uncommon). This is the only bug that I have *ever* found
  30. on the Yamaha... I'm so disappointed :-)
  31.  
  32.  
  33. COMMAND LINE USAGE
  34. ------------------
  35.  
  36. Usage: MAKECUE <cuefile> [/ID=ha:id:lun] [/BATCH] [/ISRC] [/MCN]
  37.          [/RESET] [/SPEED=n] [/SUBCODE=option] [/THRESH=n]
  38. cuefile   - Output CUE SHEET file
  39. /ID       - SCSI address of CDROM drive (default is first found)
  40. /BATCH    - Disable all logging messages
  41. /ISRC     - Read the 'International Standard Recording Codes'
  42. /MCN      - Read the 'Media Catalog Number'
  43. /RESET    - Reset device (workaround for firmware bugs)
  44. /SPEED=n  - Reading speed (default is maximum)
  45. /SUBCODE  - Subcode scanning option...
  46.               NONE - Disable subcode scan (default)
  47.               SOME - Scan subcode for pregaps only
  48.               ALL  - Scan subcode for all subindexes
  49. /THRESH   - Pregap scan threshold (default is 300 sectors)
  50. e.g. MAKECUE TEST.CUE
  51. e.g. MAKECUE TEST.CUE /SUBCODE=SOME /THRESH=450
  52. e.g. MAKECUE TEST.CUE /ID=0:3:0 /SUBCODE=ALL
  53.  
  54.  
  55. HOW TO USE MAKECUE
  56. ------------------
  57.  
  58. Scanning the subcode is disabled by default (/SUBCODE=NONE).
  59.  
  60.     If you specify /SUBCODE=SOME, then only indexes zero (pregap)
  61. and one (user data) will be scanned for. Since 99% of all discs do
  62. not have indexes greater than one, this is the fastest way to scan
  63. a disc. If you specify the /PREGAP=ALL option, it could take as long
  64. as 74 minutes to completely scan the disc for all indexes. The /THRESH
  65. option is used to specify the largest pregap (index 0) that you expect
  66. to find on the disc. Most discs don't have pregaps longer than 150
  67. sectors (so the default of 300 sectors is more than enough). The larger
  68. the threshold, the longer it will take to scan the disc.
  69.  
  70. Here is a simple example that will make a copy of any audio disc...
  71.  
  72.   C:\>CDCLIP AUDIO.WAV
  73.  
  74.   C:\>MAKECUE AUDIO.CUE
  75.  
  76.   Edit AUDIO.CUE to include the name of the AUDIO.WAV file.
  77.  
  78.   C:\>DAO AUDIO.CUE
  79.  
  80. **********************************************************************
  81.  
  82. Please send all suggestions, comments, and bug reports to...
  83.  
  84. Jeff Arnold
  85. Golden Hawk Technology
  86. 125 Indian Rock Road
  87. Merrimack, NH 03054
  88.  
  89. Phone: 603-424-0269
  90. FAX  : 603-429-0073
  91.  
  92. URL  : http://www.mainstream.net/goldenhawk
  93. EMAIL: jarnold@mainstream.net
  94.  
  95. **********************************************************************
  96.  
  97. Updated on SEPTEMBER 1, 1996
  98.  
  99.